home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / the_great_candy_caper.swf / scripts / frame_4 / DoAction.as
Text File  |  2012-01-07  |  347b  |  16 lines

  1. if(score >= 100)
  2. {
  3.    result = "Awesome! " + score + " Points. You made it safe and sound.";
  4.    ghost.gotoAndPlay("madegrave");
  5. }
  6. else if(score < 100 && 0 < score)
  7. {
  8.    result = score + " Candy Points. You\'ll need to eat even more candy next time.";
  9. }
  10. else
  11. {
  12.    result = "Ooops, you ran out of candy.";
  13. }
  14. stop();
  15. basemusic.stop();
  16.